summaryrefslogtreecommitdiff
path: root/src/pages/[locale]/index.astro
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-09-21 22:09:59 +0100
committerGitHub <noreply@github.com>2023-09-21 22:09:59 +0100
commit005cba86fefc395b157d71b4c6233dba320afb05 (patch)
treea4876fa46418830cdc5dcdcbfc3f36bc2fde5512 /src/pages/[locale]/index.astro
parentaaac97183965e6edd4cbab9a9ea3be1fb90bfef2 (diff)
parentc357a2af03a8abf960941156414b990d50c48b76 (diff)
Merge pull request #6 from Sycamost/dev
Dev
Diffstat (limited to 'src/pages/[locale]/index.astro')
-rw-r--r--src/pages/[locale]/index.astro5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pages/[locale]/index.astro b/src/pages/[locale]/index.astro
index f031e8e..a230aee 100644
--- a/src/pages/[locale]/index.astro
+++ b/src/pages/[locale]/index.astro
@@ -23,6 +23,11 @@ const mostRecentNewsItem = await getMostRecentNewsItem(locale);
<Page title={t(tPage, { key: 'title' })}>
<section>
+ <h2 set:html={t(tPage, { key: 'submit' })} />
+ <p set:html={t(tPage, { key: 'submit-para-1' })} />
+ <p set:html={t(tPage, { key: 'submit-para-2' })} />
+ </section>
+ <section>
<h2 class="grid-span-6" set:html={t(tPage, { key: 'news' })} />
<NewsIndex newsItems={mostRecentNewsItem ? [mostRecentNewsItem] : []} headingLevel="h3" />
{